2
תגובות
עזרה PHP JS REGEX
פתח
moshe7799
,
יש לי את הקוד הזה וזה עובד מצוין בPHP
איך אני מגיע לאותה תוצאה עם JS?
$pattern = '/asyncLoader.load\({"phaseType":"scroll","ajaxURL":"([^"]+)".*?home-tax-history/';
$matches = array();
preg_match_all( $pattern , $str, $matches);
$url = $matches[1];
var_dump($url);
$matches = array();
preg_match_all( $pattern , $str, $matches);
$url = $matches[1];
var_dump($url);
איך אני מגיע לאותה תוצאה עם JS?